home *** CD-ROM | disk | FTP | other *** search
/ IRIX Base Documentation 2002 November / SGI IRIX Base Documentation 2002 November.iso / usr / share / catman / p_man / cat3 / SCSL / dlaed5.z / dlaed5
Encoding:
Text File  |  2002-10-03  |  3.4 KB  |  133 lines

  1.  
  2.  
  3.  
  4. DDDDLLLLAAAAEEEEDDDD5555((((3333SSSS))))                                                          DDDDLLLLAAAAEEEEDDDD5555((((3333SSSS))))
  5.  
  6.  
  7.  
  8. NNNNAAAAMMMMEEEE
  9.      DLAED5 - subroutine computes the I-th eigenvalue of a symmetric rank-one
  10.      modification of a 2-by-2 diagonal matrix  diag( D ) + RHO * Z *
  11.      transpose(Z)
  12.  
  13. SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
  14.      SUBROUTINE DLAED5( I, D, Z, DELTA, RHO, DLAM )
  15.  
  16.          INTEGER        I
  17.  
  18.          DOUBLE         PRECISION DLAM, RHO
  19.  
  20.          DOUBLE         PRECISION D( 2 ), DELTA( 2 ), Z( 2 )
  21.  
  22. IIIIMMMMPPPPLLLLEEEEMMMMEEEENNNNTTTTAAAATTTTIIIIOOOONNNN
  23.      These routines are part of the SCSL Scientific Library and can be loaded
  24.      using either the -lscs or the -lscs_mp option.  The -lscs_mp option
  25.      directs the linker to use the multi-processor version of the library.
  26.  
  27.      When linking to SCSL with -lscs or -lscs_mp, the default integer size is
  28.      4 bytes (32 bits). Another version of SCSL is available in which integers
  29.      are 8 bytes (64 bits).  This version allows the user access to larger
  30.      memory sizes and helps when porting legacy Cray codes.  It can be loaded
  31.      by using the -lscs_i8 option or the -lscs_i8_mp option. A program may use
  32.      only one of the two versions; 4-byte integer and 8-byte integer library
  33.      calls cannot be mixed.
  34.  
  35. PPPPUUUURRRRPPPPOOOOSSSSEEEE
  36.      This subroutine computes the I-th eigenvalue of a symmetric rank-one
  37.      modification of a 2-by-2 diagonal matrix diag( D ) + RHO * Z *
  38.      transpose(Z) . The diagonal elements in the array D are assumed to
  39.      satisfy
  40.  
  41.                 D(i) < D(j)  for  i < j .
  42.  
  43.      We also assume RHO > 0 and that the Euclidean norm of the vector Z is
  44.      one.
  45.  
  46.  
  47. AAAARRRRGGGGUUUUMMMMEEEENNNNTTTTSSSS
  48.      I      (input) INTEGER
  49.             The index of the eigenvalue to be computed.  I = 1 or I = 2.
  50.  
  51.      D      (input) DOUBLE PRECISION array, dimension (2)
  52.             The original eigenvalues.  We assume D(1) < D(2).
  53.  
  54.      Z      (input) DOUBLE PRECISION array, dimension (2)
  55.             The components of the updating vector.
  56.  
  57.      DELTA  (output) DOUBLE PRECISION array, dimension (2)
  58.             The vector DELTA contains the information necessary to construct
  59.             the eigenvectors.
  60.  
  61.  
  62.  
  63.                                                                         PPPPaaaaggggeeee 1111
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. DDDDLLLLAAAAEEEEDDDD5555((((3333SSSS))))                                                          DDDDLLLLAAAAEEEEDDDD5555((((3333SSSS))))
  71.  
  72.  
  73.  
  74.      RHO    (input) DOUBLE PRECISION
  75.             The scalar in the symmetric updating formula.
  76.  
  77.      DLAM   (output) DOUBLE PRECISION
  78.             The computed lambda_I, the I-th updated eigenvalue.
  79.  
  80. FFFFUUUURRRRTTTTHHHHEEEERRRR DDDDEEEETTTTAAAAIIIILLLLSSSS
  81.      Based on contributions by
  82.         Ren-Cang Li, Computer Science Division, University of California
  83.         at Berkeley, USA
  84.  
  85.  
  86. SSSSEEEEEEEE AAAALLLLSSSSOOOO
  87.      INTRO_LAPACK(3S), INTRO_SCSL(3S)
  88.  
  89.      This man page is available only online.
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.                                                                         PPPPaaaaggggeeee 2222
  130.  
  131.  
  132.  
  133.